home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000286_news@columbia.edu _Thu Mar 28 08:57:26 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id IAA00180 for <kermit.misc@watsun>; Thu, 28 Mar 1996 08:57:24 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id IAA01755 for kermit.misc@watsun; Thu, 28 Mar 1996 08:57:21 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!jaltman
  5. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  6. Newsgroups: comp.os.os2.comm,comp.protocols.kermit.misc
  7. Subject: Re: C-Kermit (OS/2): Auto-Exit?
  8. Date: 28 Mar 1996 13:57:13 GMT
  9. Organization: Columbia University
  10. Lines: 47
  11. Message-ID: <4je5rp$1mp@apakabar.cc.columbia.edu>
  12. References: <4jd5mb$amf@siberia.gtri.gatech.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.os.os2.comm:6141 comp.protocols.kermit.misc:4958
  15.  
  16. In article <4jd5mb$amf@siberia.gtri.gatech.edu>,
  17. Robert L. Howard <rhoward@hamlet> wrote:
  18. : I have just begun using C-Kermit under OS/2 Warp as (primarily) a
  19. : telnet client (replacing the sorry one included in Warp Connect).
  20. : My only complaint is that I have to fire up Kermit (from its program
  21. : object icon), then type 'telnet host' from the Kermit prompt, then 
  22. : after I logout type 'quit' at the Kermit prompt again.
  23.  
  24. Please read the CKERMIT.INF file (UPDATES command) for a complete
  25. description of using C-Kermit with the Workplace Shell.
  26.  
  27. : What I would like is to have a program object for a given host such 
  28. : that C-Kermit immediately jumps to the telnet session *and* then
  29. : after I logout from the remote host have Kermit quit by itself.
  30.  
  31. Several solutions:
  32.  
  33.     ckermit -j <host> -c
  34.  
  35. or the one you used below.
  36.  
  37. : One solution I found was to place '-C "telnet host,exit"' on the 
  38. : parameters line of the program object.  This works well with one
  39. : exception.  I can't Alt-x back to the Kermit prompt in the middle
  40. : of a session because (I'm guessing) the 'exit' command is then
  41. : processed.
  42.  
  43. Not directly possible.
  44.  
  45. you could create your own macro
  46.  
  47. define myconnect connect, if eq "\v(ttyfd)" "-1" exit
  48.  
  49. Then on the command line use
  50.  
  51.     ckermit -C "set host <host>, if success myconnect"
  52.  
  53. Then Alt-X will bring you back to the command prompt if you are still
  54. connected, if not you will exit.
  55.  
  56. When ready to go back to CONNECT mode, use your myconnect macro instead
  57. of the connect command.
  58.  
  59. Jeffrey Altman * PO Box 220415 * Great Neck, NY * 11022-0415 * (516) 466-5495
  60.                * 612 West 115th St #716 * New York, NY * 10025 * (212) 854-1344
  61.   C-Kermit 5A(191) for OS/2:   http://www.columbia.edu/kermit/cko191.html
  62.   Kermit 95 for Windows 95 :   http://www.columbia.edu/kermit/k95.html